home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000190_news@columbia.edu _Wed Oct 13 17:25:46 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id RAA20174
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 13 Oct 1999 17:25:45 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id QAA03538
  7.     for kermit.misc@watsun.cc.columbia.edu; Wed, 13 Oct 1999 16:57:09 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: ASCII character 186 killing transfer
  11. Date: 13 Oct 1999 20:57:08 GMT
  12. Organization: Columbia University
  13. Message-ID: <7u2rn4$3ef$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <7u2qqd$a2v$1@nnrp1.deja.com>,
  17. Mr. Scott  <scott_davis@my-deja.com> wrote:
  18. : Synopsis:
  19. : Using C-Kermit 7.0.195.Beta.02 on AIX 4.2.1...
  20. :
  21. We've issued 8 new Betas since then -- you might want to try the latest:
  22.  
  23.   http://www.columbia.edu/kermit/ck70.html
  24.  
  25. : ... to dial a serial modem into
  26. : a similar AIX box, then telnet from OS prompt to yet another AIX box.
  27. : Then try and transfer a file with an ASCII 186 in it.  The transfer
  28. : times out.  Don't know why, but removing that character removed the
  29. : problem.  There are other > 127 characters in other files that are
  30. : producing similar results.  What should I set things to?  It doesn't
  31. : look like I can prefix this character (or the other ones).
  32. :
  33. In fact, that's probably what you need to do.
  34.  
  35. Transferring files through concatenations of connections is always
  36. tricky, because any assumptions that each Kermit program makes by looking
  37. at its connection are going to be wrong.
  38.  
  39. Try one or both of the following:
  40.  
  41. To prefix all 8-bit characters, use "set parity space".
  42.  
  43. To prefix all control characters, use "set prefixing all".
  44.  
  45. - Frank